home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 2.iso / dist / fw_guile.idb / usr / freeware / include / libguile / print.h.z / print.h
Encoding:
C/C++ Source or Header  |  2002-07-08  |  5.0 KB  |  132 lines

  1. /* classes: h_files */
  2.  
  3. #ifndef SCM_PRINT_H
  4. #define SCM_PRINT_H
  5. /* Copyright (C) 1995,1996,1998,2000,2001 Free Software Foundation, Inc.
  6.  * 
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License as published by
  9.  * the Free Software Foundation; either version 2, or (at your option)
  10.  * any later version.
  11.  * 
  12.  * This program is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  * GNU General Public License for more details.
  16.  * 
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with this software; see the file COPYING.  If not, write to
  19.  * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  20.  * Boston, MA 02111-1307 USA
  21.  *
  22.  * As a special exception, the Free Software Foundation gives permission
  23.  * for additional uses of the text contained in its release of GUILE.
  24.  *
  25.  * The exception is that, if you link the GUILE library with other files
  26.  * to produce an executable, this does not by itself cause the
  27.  * resulting executable to be covered by the GNU General Public License.
  28.  * Your use of that executable is in no way restricted on account of
  29.  * linking the GUILE library code into it.
  30.  *
  31.  * This exception does not however invalidate any other reasons why
  32.  * the executable file might be covered by the GNU General Public License.
  33.  *
  34.  * This exception applies only to the code released by the
  35.  * Free Software Foundation under the name GUILE.  If you copy
  36.  * code from other Free Software Foundation releases into a copy of
  37.  * GUILE, as the General Public License permits, the exception does
  38.  * not apply to the code that you add in this way.  To avoid misleading
  39.  * anyone as to the status of such modified files, you must delete
  40.  * this exception notice from them.
  41.  *
  42.  * If you write modifications of your own for GUILE, it is your choice
  43.  * whether to permit this exception to apply to your modifications.
  44.  * If you do not wish that, delete this exception notice.  */
  45.  
  46.  
  47.  
  48. #include "libguile/__scm.h"
  49.  
  50. #include "libguile/options.h"
  51.  
  52. extern scm_t_option scm_print_opts[];
  53.  
  54. #define SCM_PRINT_CLOSURE    (SCM_PACK (scm_print_opts[0].val))
  55. #define SCM_PRINT_SOURCE_P    ((int) scm_print_opts[1].val)
  56. #define SCM_N_PRINT_OPTIONS 2
  57.  
  58. /* State information passed around during printing.
  59.  */
  60. #define SCM_PRINT_STATE_P(obj) (SCM_STRUCTP(obj) \
  61.                 && (SCM_EQ_P (SCM_STRUCT_VTABLE(obj), \
  62.                               scm_print_state_vtable)))
  63. #define SCM_PRINT_STATE(obj) ((scm_print_state *) SCM_STRUCT_DATA (obj))
  64.  
  65. #define RESET_PRINT_STATE(pstate) \
  66. do { \
  67.   pstate->list_offset = 0; \
  68.   pstate->top = 0; \
  69. } while (0)
  70.  
  71. #define SCM_WRITINGP(pstate) ((pstate)->writingp)
  72. #define SCM_SET_WRITINGP(pstate, x) { (pstate)->writingp = (x); }
  73.  
  74. #define SCM_PORT_WITH_PS_P(p)    SCM_TYP16_PREDICATE (scm_tc16_port_with_ps, p)
  75. #define SCM_PORT_WITH_PS_PORT(p) SCM_CAR (SCM_CELL_OBJECT_1 (p))
  76. #define SCM_PORT_WITH_PS_PS(p)   SCM_CDR (SCM_CELL_OBJECT_1 (p))
  77.  
  78. #define SCM_COERCE_OUTPORT(p) \
  79.   (SCM_PORT_WITH_PS_P (p) ? SCM_PORT_WITH_PS_PORT (p) : p)
  80.  
  81. #define SCM_PRINT_STATE_LAYOUT "sruwuwuwuwuwpwuwuwuruopr"
  82. typedef struct scm_print_state {
  83.   SCM handle;            /* Struct handle */
  84.   int revealed;                 /* Has the state escaped to Scheme? */
  85.   unsigned long writingp;    /* Writing? */
  86.   unsigned long fancyp;        /* Fancy printing? */
  87.   unsigned long level;        /* Max level */
  88.   unsigned long length;        /* Max number of objects per level */
  89.   SCM hot_ref;            /* Hot reference */
  90.   unsigned long list_offset;
  91.   unsigned long top;        /* Top of reference stack */
  92.   unsigned long ceiling;    /* Max size of reference stack */
  93.   SCM *ref_stack;        /* Stack of references used during
  94.                    circular reference detection */
  95.   SCM ref_vect;
  96. } scm_print_state;
  97.  
  98. extern SCM scm_print_state_vtable;
  99.  
  100. extern scm_t_bits scm_tc16_port_with_ps;
  101.  
  102. extern SCM scm_print_options (SCM setting);
  103. SCM scm_make_print_state (void);
  104. void scm_free_print_state (SCM print_state);
  105. extern void scm_intprint (long n, int radix, SCM port);
  106. extern void scm_ipruk (char *hdr, SCM ptr, SCM port);
  107. extern void scm_iprlist (char *hdr, SCM exp, int tlr, SCM port, scm_print_state *pstate);
  108. extern void scm_print_symbol_name (const char *str, size_t len, SCM port);
  109. extern void scm_prin1 (SCM exp, SCM port, int writingp);
  110. extern void scm_iprin1 (SCM exp, SCM port, scm_print_state *pstate);
  111. extern SCM scm_write (SCM obj, SCM port);
  112. extern SCM scm_display (SCM obj, SCM port);
  113. extern SCM scm_simple_format (SCM port, SCM message, SCM args);
  114. extern SCM scm_newline (SCM port);
  115. extern SCM scm_write_char (SCM chr, SCM port);
  116. extern SCM scm_printer_apply (SCM proc, SCM exp, SCM port, scm_print_state *);
  117. extern SCM scm_port_with_print_state (SCM port, SCM pstate);
  118. extern SCM scm_get_print_state (SCM port);
  119. extern int scm_valid_oport_value_p (SCM val);
  120. extern void scm_init_print (void);
  121.  
  122. #ifdef GUILE_DEBUG
  123. extern SCM scm_current_pstate (void);
  124. #endif 
  125. #endif  /* SCM_PRINT_H */
  126.  
  127. /*
  128.   Local Variables:
  129.   c-file-style: "gnu"
  130.   End:
  131. */
  132.